home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Tools / D_UHR11E / D_T / D_T_E.TXT < prev   
Encoding:
Text File  |  1997-06-16  |  3.5 KB  |  127 lines

  1.  
  2.  
  3.  
  4.  
  5.                                    D_T.PRG
  6.                                   D_T_E.PRG
  7.  
  8.  
  9.  
  10.                         documentation dec, 25. 1992
  11.  
  12.  
  13.  
  14.  
  15.  program by Hinnerk Rümenapf
  16.  (C) 1987 - 1992 HWR
  17.  
  18.  *Pentagramm Software Braunschweig
  19.  Thomas Birke                                           Hinnerk Rümenapf
  20.  Billrothstr. 31                                        Ottweilerstr. 18
  21.  3300 Braunschweig                                      W-3300 Braunschweig
  22.  -----------------
  23.  
  24.  GERMANY
  25.  
  26.  
  27.  This software may be used by everyone who gives a (FREE) copy to anyone,
  28.  who might want to use it.
  29.  
  30.  This software may be copied only if all (UNCHANGED) files are included:
  31.  
  32.         German version
  33.                 - D_T.PRG
  34.                 - D_T.TXT
  35.                 
  36.         English version
  37.                 - D_T_E.PRG
  38.                 - D_T_E.TXT
  39.                 
  40.  
  41.  ALL RIGHTS RESERVED, I'm only letting you use it.
  42.  
  43.  There is absolutely NO WARRANTY whatsoever.
  44.  
  45.  
  46.  
  47.  What's the use ?
  48.  ----------------
  49.  
  50.  A program for all ATARI ST -useres whose computers have no hardware-clock.
  51.  
  52.  
  53.  
  54.  Installation
  55.  ------------
  56.  
  57.  Copy D_T_E.PRG (or, if you prefer the german version, D_T.PRG) into the
  58.  AUTO-folder on your boot-drive.
  59.  
  60.  
  61.  What does it do ?
  62.  -----------------
  63.  
  64.  There are (at least) two clocks in your ST, one can be accessed via GEMDOS
  65.  the other via XBIOS.
  66.  
  67.  The GEMDOS-clock is (almost) pure software. At system start (reset) it is set
  68.  to midnight and the date of the TOS-version.
  69.  The XBIOS accesses either the 'intelligent' keyboard (260, 520, 1040,...) or 
  70.  battery powered hardware clock (MEGA ST[E], ...) (If you ST has such a
  71.  hardware-clock, you don't need this program). The keyboard-processor clock
  72.  keeps running until the power is switched off.
  73.  
  74.  So, after a reset the XBIOS-time stands a good chance of being correct.
  75.  
  76.  
  77.  First a definition of three conditions :
  78.         A) Is the current Date equal to the TOS-version date ?
  79.         B) Is the day 0 ?
  80.         C) Is the month 0 ?
  81.  
  82. If at least one of these conditions (A-C) is fullfilled, the date is called
  83. invalid (B and C were only defined because my keyboard-processor always 
  84. sets the date to 00.00.28 after power up). 
  85.  
  86.  
  87.   1. First the GEMDOS-date is checked. If it is valid the program
  88.      displays date and time and then exits.
  89.  
  90.   2. If the GEMDOS-date is invalid, the XBIOS-date is being tested.
  91.      If the XBIOS-date is valid, GEMDOS time and date are set to XBIOS
  92.      time and date, a message, time and date is displayed, and then
  93.      the programm exits.
  94.   
  95.   3. If the XBIOS-date is invalid the program asks you to enter date and time.
  96.  
  97.      You can make the program ask for time and date by holding down the RIGHT
  98.      SHIFT key at program start.
  99.  
  100.      First , you are asked to enter the current date, format MMDDYY.
  101.      That means two figues for the month, two figues for the day and two
  102.      figues for the year.
  103.  
  104.      EXAMPLES:
  105.         Feb.  3. 1991    =>      020391
  106.         Dec. 25. 1992    =>      122592
  107.  
  108.      After that you're asked the enter the current time, format HHMM.
  109.      You've guessed it, two figures for the hour and two figures for the
  110.      minutes. 
  111.  
  112.      EXAMPLES:
  113.         5 past 9am       =>      0905
  114.        25 past 2pm       =>      1425
  115.        10 past midnight  =>      0010
  116.  
  117.  
  118.      The input can be cleared with ESC, BACKSPACE and DELETE work as usual.
  119.  
  120.  
  121.  dokumentation by Hinnerk Rümenapf
  122.  
  123. >> broken english spoken perfectly
  124. >> to err is human, to forgive divine
  125.  
  126. +++
  127.